11. Apply Machine Learning Exercise Solution

Apply Machine Learning Exercise Solution

ND320 C2 L1 14 Machine Learning Applied To 2D Medical Imaging Exercise Solution Video

Summary

max_prob column is created which takes the max of either Brain_bleed_probability or Aortic_dissectin_probability.

And re-order the dataframe according to this max_prob. So the images with larger probability are put at the top of the queue.

Next, time_too_read_prioritized column is created that is simply values incremented by 6 minutes per row. This is the new reading time based on the re-ordered queue.

Finally, time_delta column is time_to_read minus time_to_read_prioritized so that you could get a sense of how much time is saved from the original order.

Code

If you need a code on the https://github.com/udacity.